325aab10a212ded168269136d158d3851e5de111,Mage.Sets/src/mage/sets/riseoftheeldrazi/FissureVent.java,FissureVent,FissureVent,#UUID#,46

Before Change


        mode1.getTargets().add(new TargetNonBasicLandPermanent());
        mode1.getEffects().add(new DestroyTargetEffect());
        this.getSpellAbility().addMode(mode1);
        Mode mode2 = new Mode();
        mode2.getTargets().add(new TargetArtifactPermanent());
        mode2.getTargets().add(new TargetNonBasicLandPermanent());
        mode2.getEffects().add(new DestroyMultiTargetEffect());
        this.getSpellAbility().addMode(mode2);
    }

    public FissureVent(final FissureVent card) {

After Change


        this.expansionSetCode = "ROE";

        // Choose one or both - Destroy target artifact; and/or destroy target nonbasic land.
        this.getSpellAbility().getModes().setMinModes(1);
        this.getSpellAbility().getModes().setMaxModes(2);

        this.getSpellAbility().addTarget(new TargetArtifactPermanent());
        this.getSpellAbility().addEffect(new DestroyTargetEffect());